Update STOP Payment
Disables a previously created STOP Payment standing order.
Method: POST
{{URL}}/jsonrpc
Headers
Name | Value |
---|---|
Content-Type | application/json |
Example
Payload Parameters
Parameter | Description |
---|---|
method | String Name of the API method to be invoked. Must be "SmartContractService.UpdateStandingOrder". |
id | String Unique identifier for the request, used for tracking. |
params.payload.ID | String Unique identifier for the standing order to be updated. |
params.api.credential | String Authentication credential/token used for API access. |
params.api.signature | String Cryptographic signature for securing the API call. |
params.api.apiKey | String API key assigned to the application/client. |
params.api.keyId | String Device or key identifier used in authentication. |
Body
{
"method": "SmartContractService.UpdateStandingOrder",
"id": "1",
"params": {
"payload": {
"ID": "TK10000000000009003"
},
"api": {
"credential": "{{cred}}",
"signature": "{{signature}}",
"apiKey": "{{ApiKey}}",
"keyId": "{{DeviceID}}"
}
}
}
Response: 200
Payload Parameters
Parameter | Description |
---|---|
id | String Identifier that matches the original request ID |
result.status | String Status message indicating the outcome of the operation. (e.g., "Standing order Disabled successfully") |
jsonrpc | String JSON-RPC protocol version. Typically set to "2.0" |
{
"id": "1",
"result": {
"status": "Standing order Disabled successfully"
},
"jsonrpc": "2.0"
}